home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / LeeMandel1.Form < prev    next >
Text File  |  1994-04-13  |  201b  |  27 lines

  1. LeeMandel1
  2. {
  3.     {
  4.         mirrorxy
  5.         x1=-0.7
  6.         x2= 0.7
  7.         y1=-0.65
  8.         y2= 0.65
  9.         bailout=2.0        ; Bailoutvalue
  10.     }
  11.     {
  12.         z=pixel
  13.         d=pixel*pixel
  14.     }
  15.     {
  16.         c=d/z
  17.         c=c+z
  18.         z=c*c
  19.         w=abs(z)
  20.     }
  21.     {
  22.         w>bailout
  23.     }
  24.     {
  25.     }
  26. }
  27.